home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 9 / FM Towns Free Software Collection 9.iso / taropyon / silib / inc / scn / msk.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-16  |  318 b   |  17 lines

  1. #ifndef    _SCN_MSK_H
  2. #define    _SCN_MSK_H
  3.  
  4. #ifndef    _SITYPES_H
  5. #    include    <sitypes.h>
  6. #endif
  7.  
  8. typedef    struct                /* ビットマップマスク構造体    */
  9. {
  10.     int            flag;        /* マスク有効/無効フラグ    */
  11.     int            xb, yb;        /* 横/縦バイト数            */
  12.     size_t        mskBufSiz;    /* マスクバッファサイズ        */
  13.     char        *mskBuf;
  14. } MSK_T;
  15.  
  16. #endif
  17.